: I really need to know if someone knows about any algoritm to
: convert from a octal value to a hexadecimal or binary?
: If you know where to find such an iformation - please let me know.
: All hints are welcome.
: Thanks,
: Cristian
There is no real difference between an octal, decimal or binary number to the machine. It's all stored in binary. Use strtol(const char *, char **end_ptr, int
base) to convert to any string in any base to a number (integer) then just